home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 March / EnterCD 03_2004.iso / Multimedia / Adobe GoLive CS / data1.cab / PF_AppDir_Mod_JScript_URLPopup / UPMain.js < prev   
Encoding:
Text File  |  2003-12-10  |  277 b   |  7 lines

  1. function CSURLPopupShow(formName, popupName, target) {
  2.     var form  = (!IsIE()&&CSBVers>=5)?document.forms[formName]:CSFindElement(formName);
  3.     var popup = form.elements[popupName];
  4.     window.open(popup.options[popup.selectedIndex].value, target);
  5.     popup.selectedIndex = 0;
  6. }
  7.